-
Notifications
You must be signed in to change notification settings - Fork 2
/
tsconfig.template.json
18 lines (18 loc) · 1.08 KB
/
tsconfig.template.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Base tsconfig for templates to use
{
"compilerOptions": {
"target": "es2022" /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019' or 'ESNEXT'. */,
"module": "nodenext" /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */,
"jsx": "react" /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */,
"strict": true /* Enable all strict type-checking options. */,
"moduleResolution": "nodenext" /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */,
"allowSyntheticDefaultImports": true /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */,
"forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */,
"resolveJsonModule": true,
"types": [
"vitest/globals",
"vite/client"
] /* Type declaration files to be included in compilation. */
},
"exclude": ["cdk.out", "node_modules"]
}