1
0
Fork 0
mirror of https://github.com/kou029w/_.git synced 2025-01-31 14:28:04 +00:00
_/frourio/server/tsconfig.json

20 lines
405 B
JSON
Raw Normal View History

2020-10-12 13:35:33 +09:00
{
"compilerOptions": {
"downlevelIteration": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"lib": ["dom"],
"module": "esnext",
"moduleResolution": "node",
"baseUrl": ".",
"paths": {
"$/*": ["./*"]
},
"rootDir": ".",
"strict": true,
"strictPropertyInitialization": false,
"target": "es6"
}
}