Skip to content
Snippets Groups Projects
Unverified Commit 9ed29d66 authored by Mateusz Tyszczak's avatar Mateusz Tyszczak :scroll:
Browse files

Add base tsconfig

parent bd385665
No related branches found
No related tags found
No related merge requests found
Pipeline #115926 canceled
This commit is part of merge request !72. Comments created here will be created in the context of that merge request.
{
"compilerOptions": {
"emitDecoratorMetadata": true,
"resolveJsonModule": true,
"experimentalDecorators": true,
"incremental": true,
"tsBuildInfoFile": "./dist/.tsbuildinfo",
"target": "ES2020",
"lib": [
"DOM",
"ES2020"
],
"module": "ES2020",
"moduleResolution": "bundler",
"rootDir": "./src",
"outDir": "./dist",
"noEmit": false,
"declaration": true,
"declarationMap": false,
"sourceMap": false,
"noImplicitAny": false,
"noLib": false,
"allowUnreachableCode": false,
"allowSyntheticDefaultImports": true,
"allowUnusedLabels": false,
"strictNullChecks": true,
"strictPropertyInitialization": true,
"noFallthroughCasesInSwitch": false,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"removeComments": false,
"checkJs": false,
"strict": true,
"alwaysStrict": true,
"allowJs": false,
"esModuleInterop": true,
"noErrorTruncation": true,
},
"buildOptions": {
"force": true,
"verbose": true
}
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment