2020-08-04 12:13:41 +09:00
|
|
|
{
|
2021-09-01 20:06:33 +09:00
|
|
|
"compilerOptions": {
|
2023-02-25 17:13:07 +09:00
|
|
|
"target": "es2021",
|
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
2021-10-18 01:32:33 +09:00
|
|
|
"outDir": "./built/",
|
2021-10-18 01:55:39 +09:00
|
|
|
"rootDir": "./src/",
|
2021-10-18 01:32:33 +09:00
|
|
|
"strict": true,
|
|
|
|
"strictPropertyInitialization": false,
|
2021-09-14 09:22:04 +09:00
|
|
|
"typeRoots": [
|
|
|
|
"node_modules/@types",
|
|
|
|
"src/@types"
|
2021-10-18 01:32:33 +09:00
|
|
|
],
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"resolveJsonModule": true
|
2021-09-01 20:06:33 +09:00
|
|
|
},
|
|
|
|
"exclude": [
|
|
|
|
"./migration",
|
|
|
|
"./src/frontend"
|
|
|
|
]
|
2020-08-04 14:38:26 +09:00
|
|
|
}
|