wallet-core/packages/taler-wallet-embedded/tsconfig.json

29 lines
679 B
JSON
Raw Normal View History

2015-12-13 23:47:30 +01:00
{
"compileOnSave": true,
2016-01-18 22:41:25 +01:00
"compilerOptions": {
"composite": true,
"declaration": true,
"declarationMap": true,
"target": "ES6",
2020-08-03 10:14:07 +02:00
"module": "ESNext",
"moduleResolution": "node",
2016-01-18 22:41:25 +01:00
"sourceMap": true,
2021-03-27 14:35:58 +01:00
"lib": ["es6"],
2016-02-10 02:03:31 +01:00
"noImplicitReturns": true,
2016-09-12 17:41:12 +02:00
"noFallthroughCasesInSwitch": true,
"strict": true,
2018-09-20 02:56:13 +02:00
"strictPropertyInitialization": false,
"outDir": "lib",
"noImplicitAny": true,
2019-12-14 17:23:31 +01:00
"noImplicitThis": true,
"allowJs": true,
"checkJs": true,
"incremental": true,
"esModuleInterop": true,
"importHelpers": true,
2020-08-03 10:14:07 +02:00
"rootDir": "./src",
"typeRoots": ["./node_modules/@types"]
2016-01-18 22:41:25 +01:00
},
"include": ["src/**/*"]
}