mirror of
https://github.com/ezolenko/rollup-plugin-typescript2.git
synced 2025-12-08 19:06:16 +00:00
26 lines
555 B
JSON
26 lines
555 B
JSON
{
|
|
"extends": "./tsconfig.base",
|
|
"compilerOptions": {
|
|
"target": "es6",
|
|
"noImplicitAny": true,
|
|
"sourceMap": true,
|
|
"noUnusedParameters": true,
|
|
"noUnusedLocals": true,
|
|
"noImplicitThis": true,
|
|
"diagnostics": true,
|
|
"listFiles": true,
|
|
"pretty": true,
|
|
"moduleResolution": "node",
|
|
"noEmitOnError": false,
|
|
"strictNullChecks": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noImplicitReturns": true,
|
|
"strict": true,
|
|
"outDir": "./build",
|
|
"allowSyntheticDefaultImports": true
|
|
},
|
|
"include": [
|
|
"src/**/*.ts"
|
|
],
|
|
"exclude": []
|
|
} |