forked from mozilla/perfcompare
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
19 lines (19 loc) · 773 Bytes
/
tsconfig.json
File metadata and controls
19 lines (19 loc) · 773 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"compilerOptions": {
"allowJs": true, // allow a partial TypeScript and JavaScript codebase
"esModuleInterop": true,
"jsx": "react-jsx", // use typescript to transpile jsx to js
"module": "es2022", // specify module code generation
"moduleResolution": "node",
"noEmit": true, // do not emit output files
"outDir": "./build/", // path to output directory
"preserveConstEnums": true,
"sourceMap": true, // allow sourcemap support
"skipLibCheck": true, // skip type checking of default library declaration files
"strict": true,
"strictNullChecks": true, // enable strict null checks as a best practice
"target": "es2022" // specify ECMAScript target version
},
"include": ["./src/"],
"exclude": ["node_modules"]
}