-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.json
49 lines (47 loc) · 1.18 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
/* Visit https://aka.ms/tsconfig to read more about this file */
"_version": "3.0.0",
"compilerOptions": {
"target": "ESNext",
"lib": ["ESNext", "DOM", "DOM.Iterable"],
// "types": ["@types/node"],
"module": "NodeNext",
// "moduleResolution": "NodeNext",
"strict": true,
"alwaysStrict": false,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
// "baseUrl": "./",
// "rootDir": "./",
"outDir": "./.plasttic/js",
// "allowJs": true,
"allowSyntheticDefaultImports": true,
// "allowUnreachableCode": false,
// "allowUnusedLabels": false,
// "sourceMap": false,
// "declaration": false,
// "declarationMap": false,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noUncheckedIndexedAccess": true,
"noEmit": false,
"pretty": true,
"paths": {}
},
"include": [
"./src/assets/js/*.ts",
"./src/assets/js/modules/*.ts",
"./ts-no.ts",
"./tests/**/**/*.ts"
],
"exclude": [
"node_modules",
"**/node_modules/*",
"package/*",
"dev/*",
"dist/*",
"**/tests-examples/**"
],
"typeAcquisition": { "include": ["jest"] }
}