forked from GEngine-js/GEngine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
24 lines (24 loc) · 788 Bytes
/
tsconfig.json
File metadata and controls
24 lines (24 loc) · 788 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"compilerOptions": {
"allowJs": true,
"allowSyntheticDefaultImports": true,
"declaration": false,
// "declarationDir": "types",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"importHelpers": true,
"lib": ["DOM", "ES2015", "ES2016", "ES2017", "ES2018", "ES2019", "ES2020", "ES2021", "ES2022"],
"module": "ES2020",
"moduleResolution": "node",
"outDir": "lib",
"sourceMap": true,
"strictFunctionTypes": true,
"target": "ES2020",
"noEmit": false,
// "declaration": true,
"typeRoots": ["./node_modules/@webgpu/types", "./node_modules/@types"]
},
"include": ["src/**/*.ts", "src/shader/material/pbrFrag.ts"],
"exclude": ["node_modules", "public", "dist", "example", "**/*.spec.ts"],
"typeRoots": ["./node_modules/@webgpu/types/"]
}