-
Notifications
You must be signed in to change notification settings - Fork 6
/
tsconfig.json
29 lines (29 loc) · 1015 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
{
"compilerOptions": {
"outDir": "./dist/", // path to output directory
"sourceMap": true, // allow sourcemap support
"strictNullChecks": true, // enable strict null checks as a best practice
"module": "es2020", // specify module code generation
"moduleResolution": "Bundler",
"resolveJsonModule": true,
"jsx": "react-jsx", // use typescript to transpile jsx to js
"target": "es6", // specify ECMAScript target version
"allowJs": true, // allow a partial TypeScript and JavaScript codebase,
"allowSyntheticDefaultImports": true,
"lib": ["DOM", "DOM.Iterable", "ES2023"],
"noImplicitAny": true,
"skipLibCheck": true,
"maxNodeModuleJsDepth": 10,
"baseUrl": "./app/javascript",
"types": ["vitest/globals", "vite/client"]
},
"include": [
"./app/javascript/",
"./script",
"./test/javascript/",
"buildTimezoneData.js",
"graphql.config.js",
"i18next-parser-english.config.cjs",
"i18next-parser-non-english.config.cjs"
]
}