mirror of
https://github.com/troisjs/trois.git
synced 2024-11-23 20:02:32 +08:00
23 lines
570 B
JSON
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"],
|
|
}
|