-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathtsconfig.json
49 lines (49 loc) · 1.11 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
{
"compilerOptions": {
"declaration": false,
"emitDecoratorMetadata": true,
"resolveJsonModule": true,
"experimentalDecorators": true,
"target": "es6",
"lib": ["es2020", "dom"],
"module": "esnext",
"allowSyntheticDefaultImports": true,
"moduleResolution": "node",
"baseUrl": ".",
"noImplicitAny": true,
"paths": {
"@/*": [
"app/javascript/*"
],
"~/*": [
"app/javascript/*"
],
"*": ["node_modules/*", "app/javascript/*"]
},
"strict": true,
"jsx": "preserve",
"sourceMap": true,
"noEmit": true
},
"include": [
"app/javascript/types/**/*.ts",
"app/javascript/**/*.ts",
"app/javascript/**/*.vue",
"app/javascript/**/*.tsx"
],
"exclude": [
"**/*.spec.ts",
"node_modules",
"vendor",
"public"
],
"vueCompilerOptions": {
"COMMENT": "\"target\": 2, // For Vue version <= 2.6.14",
"experimentalCompatMode": 2,
"experimentalTemplateCompilerOptions": {
"compatConfig": { "Mode": 2 }
},
"plugins": ["@vue/language-plugin-pug"]
},
"compileOnSave": false
}