mirror of
https://github.com/zhigang1992/ts-optchain.git
synced 2026-01-12 22:52:58 +08:00
19 lines
398 B
JSON
19 lines
398 B
JSON
{
|
|
"compilerOptions": {
|
|
"alwaysStrict": true,
|
|
"declaration": true,
|
|
"lib": ["es2015"],
|
|
"module": "commonjs",
|
|
"noEmitOnError": true,
|
|
"noImplicitReturns": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"outDir": "dist",
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"target": "es2015",
|
|
},
|
|
"exclude": ["node_modules"],
|
|
"include": ["src"]
|
|
}
|