Files
xlsx-template/tsconfig.json
T
Andrii Kurdiumov a4b42e4985 Move source code to src folder (#160)
That's allow compile code using TSC before publish
And all future code can use TypeScript
2022-05-10 18:16:13 +06:00

18 lines
303 B
JSON

{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"allowJs": true,
"checkJs": true,
"noEmit": false,
"strict": false,
"noImplicitAny": false,
"alwaysStrict": true,
"esModuleInterop": true,
"outDir": "lib"
},
"files": [
"src/index.js"
]
}