1
0
mirror of https://github.com/troisjs/trois.git synced 2024-11-24 04:12:02 +08:00
trois/tsconfig.json
Kevin Levron d7fd23f4f7 0.3.0
2021-05-11 21:34:35 +02:00

21 lines
481 B
JSON

{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
// this enables stricter inference for data properties on `this`
"strict": true,
"moduleResolution": "node",
// "esModuleInterop": true,
// "lib": ["esnext", "dom"],
// "types": ["vite/client"],
"sourceMap": true,
"declaration": true,
"declarationMap": true,
"outDir": "types",
},
"include": ["src/**/*.ts", "src/**/*.vue"],
// "include": ["src/export.ts"],
}