-
Notifications
You must be signed in to change notification settings - Fork 81
Expand file tree
/
Copy pathtsconfig.json
More file actions
16 lines (16 loc) · 1.03 KB
/
Copy pathtsconfig.json
File metadata and controls
16 lines (16 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
"compilerOptions": {
"target": "es2024",
"module": "commonjs", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */
"strict": true, /* Enable all strict type-checking options. */
"noImplicitAny": true, /* Raise error on expressions and declarations with an implied 'any' type. */
"esModuleInterop": true, /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
"moduleResolution": "bundler",
"types": ["node", "jest"],
"noEmit": true, /* Do not emit compiler output files as we use ncc to package the action */
"forceConsistentCasingInFileNames": true, /* Error if requiring a file by a casing different from the casing on disk */
"resolveJsonModule": true
},
"include": ["__tests__/**/*.ts", "src/**/*.ts"],
"exclude": ["**/node_modules/**"]
}