1
0
mirror of https://github.com/troisjs/trois.git synced 2024-11-23 20:02:32 +08:00
trois/tsconfig.json
2021-04-27 20:07:12 +02:00

23 lines
570 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"],
"exclude": ["src/components/**/*.ts"],
// "include": ["src/export.ts"],
// "exclude": ["src/App.vue", "src/main.ts"],
}