42 lines
757 B
JSON
42 lines
757 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "nodenext",
|
|
"moduleResolution": "nodenext",
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": false,
|
|
"outDir": "./js-built/",
|
|
"removeComments": true,
|
|
"resolveJsonModule": true,
|
|
"strict": true,
|
|
"strictFunctionTypes": true,
|
|
"strictNullChecks": true,
|
|
"experimentalDecorators": true,
|
|
"noImplicitReturns": true,
|
|
"esModuleInterop": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./*"],
|
|
"@@/*": ["./*"]
|
|
},
|
|
"typeRoots": [
|
|
"./@types",
|
|
"./node_modules/@types"
|
|
],
|
|
"lib": [
|
|
"esnext",
|
|
"dom"
|
|
]
|
|
},
|
|
"include": [
|
|
"@types/**/*.ts",
|
|
"js/**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"test/**/*"
|
|
]
|
|
}
|