-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.json
More file actions
24 lines (24 loc) · 756 Bytes
/
tsconfig.json
File metadata and controls
24 lines (24 loc) · 756 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"compilerOptions": {
"module": "commonjs",
"moduleResolution": "node",
"lib": ["es2017"],
"jsx": "react", // uses typescript to transpile jsx to js
"target": "es5", // specify ECMAScript target version
"allowJs": true, // allows a partial TypeScript and JavaScript codebase
"declaration": true,
"checkJs": false, // checks types in .js files (https://github.com/microsoft/TypeScript/wiki/Type-Checking-JavaScript-Files)
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"outDir": "dist",
"downlevelIteration": true,
"noEmit": false,
"noImplicitAny": false,
"esModuleInterop": true,
"sourceMap": true
},
"include": [
"src/ol/**/*.js"
]
}