forked from sakitam-fdd/wind-layer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
29 lines (29 loc) · 924 Bytes
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"strict": false,
"allowJs": true,
"sourceMap": true,
"esModuleInterop": true,
"declaration": true,
"declarationMap": true,
"experimentalDecorators": true,
"strictNullChecks": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"noUnusedLocals": true,
"isolatedModules": true,
"removeComments": false,
"moduleResolution": "node",
"module": "esnext",
"target": "esnext",
"jsx": "preserve",
"types": ["node", "vitest"],
"lib": ["esnext", "dom", "webworker"],
"useDefineForClassFields": false,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true
},
"include": ["packages/*/src/**/*.ts", "packages/*/typings.d.ts", "packages/*/__tests__/**/*.ts"],
"exclude": ["**/node_modules/**", "**/dist/**", "packages/*/src/**/*.glsl"]
}