39 lines
897 B
JSON
39 lines
897 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ES2022",
|
|
"moduleResolution": "Bundler",
|
|
"noEmit": true,
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"declaration": false,
|
|
"skipLibCheck": true,
|
|
"strictNullChecks": true,
|
|
"resolveJsonModule": true,
|
|
"removeComments": true,
|
|
"outDir": "dist",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"~/utils/*": [
|
|
"src/utils/*"
|
|
],
|
|
"~/config/*": [
|
|
"src/config/*"
|
|
],
|
|
"~/interfaces": [
|
|
"src/interfaces/index"
|
|
],
|
|
"~/typings": [
|
|
"src/typings/index"
|
|
]
|
|
}
|
|
},
|
|
"include": [
|
|
"src"
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
}
|