-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
55 lines (55 loc) · 1.47 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
50
51
52
53
54
55
{
"extends": "./tsconfig.debug",
"compileOnSave": true,
"compilerOptions": {
"allowArbitraryExtensions": true,
"allowImportingTsExtensions": true,
"allowJs": true,
"allowSyntheticDefaultImports": true,
"alwaysStrict": true,
"assumeChangesOnlyAffectDirectDependencies": true,
"baseUrl": "./src/facies",
"composite": true,
"declaration": true,
"downlevelIteration": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"importHelpers": true,
"lib": [ "dom" ],
"module": "NodeNext",
"moduleDetection": "auto",
"moduleResolution": "NodeNext",
"newLine": "lf",
"noErrorTruncation": true,
"noImplicitAny": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noEmitOnError": true,
"removeComments": true,
"noPropertyAccessFromIndexSignature": true,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"outDir": "./wwwroot/js",
"paths": {
"facies": [ "./src/facies/*.vue" ],
"figura": [ "./src/figura.ts" ],
"scriptura": [ "./src/scriptura/*.ts" ]
},
"sourceMap": true,
"target": "ES2022",
"types": [
"@nuxt/types",
"@nuxt/typescript-build",
"@types/node",
"cypress",
"cypress-map"
]
},
"files": [],
"references": [
{ "path": "./tsconfig.node.json" },
{ "path": "./tsconfig.app.json" },
{ "path": "./tsconfig.vitest.json" }
]
}