Files
webawesome/tsconfig.json

35 lines
855 B
JSON
Raw Normal View History

2020-07-15 17:30:37 -04:00
{
"compilerOptions": {
2021-02-26 09:09:13 -05:00
/* Visit https://aka.ms/tsconfig.json to read more about this file */
"target": "es2017",
"module": "es2015",
"lib": [
2021-02-26 09:09:13 -05:00
"dom",
"dom.Iterable",
"es2020"
],
"declaration": true,
"outDir": "./dist",
"rootDir": "./src",
"strict": true,
"strictPropertyInitialization": false,
"strictFunctionTypes": false,
"noImplicitThis": false,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"moduleResolution": "node",
"esModuleInterop": true,
"experimentalDecorators": true,
2021-02-26 09:09:13 -05:00
"removeComments": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"useUnknownInCatchVariables": true
},
"exclude": [
"docs",
2021-05-28 22:08:21 -04:00
"dist",
"src/**/*.test.ts"
]
}