mirror of
https://github.com/Aviortheking/next-template.git
synced 2025-05-28 00:39:54 +00:00
28 lines
399 B
JSON
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"
|
|
]
|
|
}
|