syndicate-js/packages/syndicatec/examples/typescript/tsconfig.json

18 lines
363 B
JSON
Raw Normal View History

{
"compilerOptions": {
"target": "ES2017",
"lib": ["ES2017", "DOM"],
"declaration": true,
"baseUrl": "./src",
"rootDir": "./src",
"outDir": "./lib",
"declarationDir": "./lib",
"esModuleInterop": true,
"moduleResolution": "node",
2021-01-19 23:52:40 +00:00
"module": "es6",
"sourceMap": true,
"strict": true
},
"include": ["src/**/*"]
}