webamp/tsconfig.json
2018-10-05 21:35:20 -07:00

17 lines
413 B
JSON

{
"compilerOptions": {
"moduleResolution": "node",
"module": "commonjs",
"target": "esnext",
"allowJs": true,
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"strict": true,
"jsx": "preserve",
"noEmit": true,
"pretty": true
},
"include": ["src/js/**/*.js", "src/js/**/*.ts"],
"exclude": ["node_modules", "**/*.spec.ts"]
}