mirror of
https://github.com/ezolenko/rollup-plugin-typescript2.git
synced 2025-12-08 19:06:16 +00:00
- `pretty: true` and `noEmitOnError: false` are the defaults - https://www.typescriptlang.org/tsconfig#pretty - https://www.typescriptlang.org/tsconfig#noEmitOnError - when `strict: true`, `noImplicitAny`, `noImplicitThis`, and `strictNullChecks` default to `true` as well - https://www.typescriptlang.org/tsconfig#strict - I've heavily contributed to the TSConfig docs and the docs for this property the most
23 lines
455 B
JSON
23 lines
455 B
JSON
{
|
|
"extends": "./tsconfig.base",
|
|
"compilerOptions": {
|
|
"target": "es6",
|
|
"module": "ES2020",
|
|
"sourceMap": true,
|
|
"noUnusedParameters": true,
|
|
"noUnusedLocals": true,
|
|
"diagnostics": true,
|
|
"listFiles": true,
|
|
"moduleResolution": "node",
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noImplicitReturns": true,
|
|
"strict": true,
|
|
"outDir": "./build",
|
|
"allowSyntheticDefaultImports": true
|
|
},
|
|
"include": [
|
|
"src/**/*.ts"
|
|
],
|
|
"exclude": []
|
|
}
|