mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-02-04 21:53:42 -06:00
31 lines
733 B
JSON
31 lines
733 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": [
|
|
"es6"
|
|
],
|
|
"module": "commonjs",
|
|
"target": "es6",
|
|
"outDir": "./built",
|
|
"declaration": false,
|
|
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"moduleResolution": "node",
|
|
"allowUnusedLabels": false,
|
|
"noImplicitOverride": true,
|
|
"noImplicitReturns": true,
|
|
"noPropertyAccessFromIndexSignature": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"allowJs": true,
|
|
"checkJs": true
|
|
},
|
|
|
|
"include": [
|
|
"rules",
|
|
"tests"
|
|
]
|
|
}
|