1
0
mirror of https://github.com/troisjs/trois.git synced 2024-11-24 04:12:02 +08:00
trois/tsconfig.json

13 lines
315 B
JSON
Raw Normal View History

2021-04-15 04:08:16 +08:00
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
// this enables stricter inference for data properties on `this`
"strict": true,
"moduleResolution": "node",
2021-04-22 20:09:44 +08:00
"sourceMap": true,
2021-04-15 04:08:16 +08:00
},
2021-04-22 20:09:44 +08:00
"include": ["src/**/*.ts", "src/**/*.vue"],
"exclude": ["node_modules", "src/App.vue"]
2021-04-15 04:08:16 +08:00
}