misskey-tools/tsconfig.json

26 lines
520 B
JSON
Raw Permalink Normal View History

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",
"outDir": "./built/",
"rootDir": "./src/",
"strict": true,
"strictPropertyInitialization": false,
2021-09-14 09:22:04 +09:00
"typeRoots": [
"node_modules/@types",
"src/@types"
],
"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
}