forked from zakariaf/rails-base-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
30 lines (30 loc) · 816 Bytes
/
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
{
"compilerOptions": {
"baseUrl": "./",
"allowJs": true,
"checkJs": true,
"outDir": "./public",
"noImplicitAny": true,
"strict": true,
"declaration": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"module": "esnext",
"lib": ["es6", "dom", "es2015.promise", "es2017", "es2020"],
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"isolatedModules": true,
"skipLibCheck": true,
"target": "es6",
"jsx": "preserve",
"downlevelIteration": true,
"forceConsistentCasingInFileNames": true,
"typeRoots": ["node_modules/@types", "app/javascript/types"],
"types": ["vite/client"],
"paths": {
"@/*": ["app/javascript/*"]
}
},
"include": ["app/javascript/**/*"]
}