mirror of
https://gitlab.com/serenetia/endpild-laman.git
synced 2025-03-16 03:15:52 +08:00
44 lines
1.1 KiB
JSON
44 lines
1.1 KiB
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"target": "es2016",
|
||
|
"lib": [
|
||
|
"dom",
|
||
|
"dom.iterable",
|
||
|
"esnext"
|
||
|
],
|
||
|
"allowJs": true,
|
||
|
"skipLibCheck": true,
|
||
|
"strict": true,
|
||
|
"forceConsistentCasingInFileNames": true,
|
||
|
"noEmit": true,
|
||
|
"esModuleInterop": true,
|
||
|
"module": "esnext",
|
||
|
"moduleResolution": "node",
|
||
|
"resolveJsonModule": true,
|
||
|
"isolatedModules": true,
|
||
|
"jsx": "preserve",
|
||
|
"incremental": true,
|
||
|
"baseUrl": "./",
|
||
|
"paths": {
|
||
|
"@services/*": [ "./services/*" ],
|
||
|
"@utils/*": [ "./utils/*" ],
|
||
|
"@interfaces/*": [ "./utils/interfaces/*" ],
|
||
|
"@components/*": [ "./components/*" ],
|
||
|
"@root/*": [ "./*" ],
|
||
|
"@assets/*": [ "./public/*" ],
|
||
|
"@struct/*": [ "./struct/*" ],
|
||
|
"@styles/*": [ "./styles/*" ],
|
||
|
"@states/*": [ "./states/*" ],
|
||
|
"@lang/*": [ "./lang/*" ]
|
||
|
}
|
||
|
},
|
||
|
"include": [
|
||
|
"next-env.d.ts",
|
||
|
"**/*.ts",
|
||
|
"**/*.tsx"
|
||
|
],
|
||
|
"exclude": [
|
||
|
"node_modules"
|
||
|
]
|
||
|
}
|