2018-08-04 01:42:03 +00:00
|
|
|
{
|
2024-01-21 04:27:02 +00:00
|
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
2018-08-04 01:42:03 +00:00
|
|
|
"compilerOptions": {
|
2024-01-21 04:27:02 +00:00
|
|
|
"target": "ES2022",
|
|
|
|
"module": "nodenext",
|
|
|
|
"moduleResolution": "nodenext",
|
|
|
|
"declaration": true,
|
|
|
|
"declarationMap": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"rootDir": "./src",
|
|
|
|
"outDir": "./built/",
|
|
|
|
"removeComments": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"strict": true,
|
|
|
|
"strictFunctionTypes": true,
|
2020-09-02 12:54:01 +00:00
|
|
|
"strictNullChecks": true,
|
2018-08-04 01:42:03 +00:00
|
|
|
"experimentalDecorators": true,
|
2024-01-21 04:27:02 +00:00
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noImplicitAny": false,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"typeRoots": [
|
|
|
|
"./node_modules/@types"
|
|
|
|
],
|
|
|
|
"lib": [
|
|
|
|
"esnext",
|
|
|
|
"dom"
|
|
|
|
],
|
2020-09-19 01:40:44 +00:00
|
|
|
"paths": {
|
2024-01-21 04:27:02 +00:00
|
|
|
"@/*": ["./src/*"]
|
2020-09-19 01:40:44 +00:00
|
|
|
},
|
2024-01-21 04:27:02 +00:00
|
|
|
"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 }
|
|
|
|
]
|
2018-08-04 01:42:03 +00:00
|
|
|
},
|
|
|
|
"include": [
|
2024-01-21 04:27:02 +00:00
|
|
|
"src/**/*"
|
|
|
|
],
|
|
|
|
"exclude": [
|
2024-01-22 07:34:07 +00:00
|
|
|
"node_modules"
|
2024-01-21 04:27:02 +00:00
|
|
|
],
|
2018-08-04 01:42:03 +00:00
|
|
|
}
|