1
0
mirror of https://github.com/troisjs/trois.git synced 2024-11-24 04:12:02 +08:00
trois/tsconfig.json
Kevin Levron 98c6430d65 tsconfig
2021-04-22 14:09:44 +02:00

13 lines
315 B
JSON

{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
// this enables stricter inference for data properties on `this`
"strict": true,
"moduleResolution": "node",
"sourceMap": true,
},
"include": ["src/**/*.ts", "src/**/*.vue"],
"exclude": ["node_modules", "src/App.vue"]
}