shoelace/tsconfig.json

35 wiersze
855 B
JSON
Czysty Zwykły widok Historia

2020-07-15 21:30:37 +00:00
{
"compilerOptions": {
2021-02-26 14:09:13 +00:00
/* Visit https://aka.ms/tsconfig.json to read more about this file */
"target": "es2017",
"module": "es2015",
"lib": [
2021-02-26 14:09:13 +00: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 14:09:13 +00:00
"removeComments": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"useUnknownInCatchVariables": true
},
"exclude": [
"docs",
2021-05-29 02:08:21 +00:00
"dist",
"src/**/*.test.ts"
]
}