mirror of
https://github.com/troisjs/trois.git
synced 2024-11-24 04:12:02 +08:00
12 lines
312 B
JSON
12 lines
312 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
// this enables stricter inference for data properties on `this`
|
|
"strict": true,
|
|
"moduleResolution": "node",
|
|
},
|
|
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"],
|
|
"exclude": [ "node_modules" ]
|
|
}
|