next-template/tsconfig.json
Florian Bouillon 8da485f471
Updated to V3
Signed-off-by: Avior <github@avior.me>
2021-09-23 13:04:20 +02:00

28 lines
399 B
JSON

{
"extends": "./node_modules/@dzeio/config/tsconfig.nextjs.json",
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"baseUrl": "./src",
"paths": {
"@styl/*": [
"styl/*"
],
"@cp/*": [
"components/*"
],
}
},
"exclude": [
"node_modules",
"out",
"__tests__"
],
"include": [
"next-env.d.ts",
"src/styl/stylus.d.ts",
"**/*.ts",
"**/*.tsx"
]
}