forked from OpenArCloud/sparcl
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.json
32 lines (32 loc) · 1.1 KB
/
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
30
31
32
{
"extends": "@tsconfig/svelte/tsconfig.json",
"compilerOptions": {
"noImplicitAny": true,
"strictPropertyInitialization": true,
"baseUrl": ".",
"paths": {
"@src/*": ["src/*"],
"@components/*": ["src/components/*"],
"@core/*": ["src/core/*"],
"@public/*": ["public/*"],
"@shaders/*": ["src/core/engines/ogl/shaders/*"],
"@thirdparty/*": ["src/third-party/*"],
"@experiments/*": ["src/experiments/*"]
},
"target": "ESNext",
"useDefineForClassFields": true,
"module": "ESNext",
"moduleResolution": "Bundler",
"resolveJsonModule": true,
/**
* Typecheck JS in `.svelte` and `.js` files by default.
* Disable checkJs if you'd like to use dynamic types in JS.
* Note that setting allowJs false does not prevent the use
* of JS in `.svelte` files.
*/
"allowJs": true,
"checkJs": true,
"isolatedModules": true
},
"include": ["src/**/*.ts", "src/**/*.js", "src/**/*.svelte"],
}