mirror of
https://github.com/syuilo/ai.git
synced 2024-11-09 15:38:00 +00:00
46 lines
1,019 B
JSON
46 lines
1,019 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "nodenext",
|
|
"moduleResolution": "nodenext",
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"rootDir": "./src",
|
|
"outDir": "./built/",
|
|
"removeComments": true,
|
|
"resolveJsonModule": true,
|
|
"strict": true,
|
|
"strictFunctionTypes": true,
|
|
"strictNullChecks": true,
|
|
"experimentalDecorators": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitAny": false,
|
|
"esModuleInterop": true,
|
|
"typeRoots": [
|
|
"./node_modules/@types"
|
|
],
|
|
"lib": [
|
|
"esnext",
|
|
"dom"
|
|
],
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
},
|
|
"plugins": [
|
|
// Transform paths in output .js files
|
|
{ "transform": "typescript-transform-paths" },
|
|
|
|
// Transform paths in output .d.ts files (Include this line if you output declarations files)
|
|
{ "transform": "typescript-transform-paths", "afterDeclarations": true }
|
|
]
|
|
},
|
|
"include": [
|
|
"src/**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
],
|
|
}
|