phantasmal-world/tsconfig.json

21 lines
489 B
JSON
Raw Normal View History

2019-05-28 19:44:17 +08:00
{
2019-07-23 17:03:35 +08:00
"compilerOptions": {
"outDir": "./dist/",
"sourceMap": true,
"module": "esnext",
"target": "es6",
2020-01-04 23:23:25 +08:00
"lib": ["esnext", "dom", "dom.iterable"],
2019-07-23 17:03:35 +08:00
"allowJs": true,
"skipLibCheck": true,
2019-07-27 23:13:00 +08:00
"esModuleInterop": true,
2019-07-23 17:03:35 +08:00
"strict": true,
"forceConsistentCasingInFileNames": true,
"moduleResolution": "node",
"experimentalDecorators": true
2019-07-23 17:03:35 +08:00
},
"include": [
"src",
2020-09-29 23:07:13 +08:00
"typedefs"
]
2019-07-23 17:03:35 +08:00
}